home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-01 | 937 b | 36 lines | [TEXT/MPS ] |
- ; File: E16.Loader
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- idNotFound GEQU $1101 ; segment/application/entry not found
- idPathnameErr GEQU $1103
- idNotLoadFile GEQU $1104 ; file is not a load file
- idBusyErr GEQU $1105 ; system loader is busy
- idFilVersErr GEQU $1107 ; file version error
- idUserIDErr GEQU $1108 ; user ID error
- idSequenceErr GEQU $1109 ; segnum out of sequence
- idBadRecordErr GEQU $110A ; illegal load record found
- idForeignSegErr GEQU $110B ; segment is foreign
- ; offset constants for InitialLoadOutputRec
- ouserID GEQU 0
- ostartAddr GEQU 2
- odPageAddr GEQU 6
- obuffSize GEQU 8
- ; offset constants for RestartOutRec
- orouserID GEQU 0
- orostartAddr GEQU 2
- orodPageAddr GEQU 6
- orobuffSize GEQU 8
- ; offset constants for LoadSegNameOut
- olssegAddr GEQU 0
- olsuserID GEQU 4
- olsfileNum GEQU 6
- olssegNum GEQU 8 ;
- ; offset constants for UnloadSegOutRec
- oususerID GEQU 0
- ousfileNum GEQU 2
- oussegNum GEQU 4
-